home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _5E285A24063B413DA0350732B9B0BC9B < prev    next >
Encoding:
Text File  |  2006-08-04  |  907 b   |  26 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_Lights():
  13.     return {
  14.         'SelButton': 4, 
  15.         'Darkness': 85, 
  16.         'Lights': ((App.Constants.Boolean.true,(255,0,0),(-70,-70,10,500,28,30,40,135)),(App.Constants.Boolean.true
  17.             ,(0,255,0),(70,-70,10,500,28,30,40,225)),(App.Constants.Boolean.true,(255,0,0),(69,69,10,500
  18.             ,28,30,40,315)),(App.Constants.Boolean.true,(0,255,0),(-70,69,10,500,28,30,40,45)),(App.Constants.Boolean.true
  19.             ,(200,200,200),(0,0,10,500,28,45,0,200)))
  20.         }
  21.  
  22. def Do(Environment):
  23.     # Lights
  24.     App.Do( Environment, 'Lights',         Preset_Lights())
  25.  
  26.